home *** CD-ROM | disk | FTP | other *** search
/ IRIX Installation Tools & Overlays 2002 November / SGI IRIX Installation Tools & Overlays 2002 November - Disc 4.iso / dist / motif21_dev.idb / usr / Motif-2.1 / include / Xm / VirtKeysP.h.z / VirtKeysP.h
C/C++ Source or Header  |  2002-10-15  |  1KB  |  48 lines

  1. /* 
  2.  *  @OSF_COPYRIGHT@
  3.  *  COPYRIGHT NOTICE
  4.  *  Copyright (c) 1990, 1991, 1992, 1993 Open Software Foundation, Inc.
  5.  *  ALL RIGHTS RESERVED (MOTIF). See the file named COPYRIGHT.MOTIF for
  6.  *  the full copyright text.
  7. */ 
  8. /* 
  9.  * HISTORY
  10. */ 
  11. /* $XConsortium: VirtKeysP.h /main/10 1995/07/13 18:21:10 drk $ */
  12. /* (c) Copyright 1990, 1991, 1992 HEWLETT-PACKARD COMPANY */
  13. #ifndef _XmVirtKeysP_h
  14. #define _XmVirtKeysP_h
  15.  
  16. #include <Xm/XmP.h>
  17. #include <Xm/VirtKeys.h>
  18.  
  19. #ifdef __cplusplus
  20. extern "C" {
  21. #endif
  22.  
  23. #define XmKEYCODE_TAG_SIZE 32
  24.  
  25. typedef struct _XmDefaultBindingStringRec {
  26.     String    vendorName;
  27.     String    defaults;
  28. } XmDefaultBindingStringRec, *XmDefaultBindingString;
  29.  
  30. typedef    struct _XmVirtualKeysymRec {
  31.     String        name;
  32.     KeySym        keysym;
  33. } XmVirtualKeysymRec, *XmVirtualKeysym;
  34.  
  35. /* For converting a Virtual keysym to a real keysym. */
  36. typedef struct _XmVKeyBindingRec
  37. {
  38.   KeySym    keysym;
  39.   Modifiers    modifiers;
  40.   KeySym    virtkey;
  41. } XmVKeyBindingRec, *XmVKeyBinding;
  42.  
  43. #ifdef __cplusplus
  44. }  /* Close scope of 'extern "C"' declaration which encloses file. */
  45. #endif
  46.  
  47. #endif /* _XmVirtKeysP_h */
  48.